blob: 25eb52aaa8457d8fe21d57ca578d143dc0492e2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import { Suspense } from "react";
import { Skeleton } from "@/components/ui/skeleton";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import VendorDocumentPage from "./vendor-document-page";
export const metadata = {
title: "문서 조회 및 업로드",
description: "협력업체 문서 조회 및 파일 업로드",
};
// ============================================================================
// 로딩 스켈레톤
// ============================================================================
function VendorDocumentSkeleton() {
return (
<Card>
<CardHeader>
<div className="flex items-center justify-between">
<Skeleton className="h-8 w-32" />
<Skeleton className="h-10 w-40" />
</div>
</CardHeader>
<CardContent className="space-y-4">
<Skeleton className="h-32 w-full" />
<Skeleton className="h-96 w-full" />
</CardContent>
</Card>
);
}
export default async function DocumentUploadPage({
searchParams,
}: {
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
}) {
const params = await searchParams;
return (
<div className="container mx-auto py-6 space-y-6">
{/* 헤더 */}
<Card>
<CardHeader>
<CardTitle className="text-2xl">문서 조회 및 업로드</CardTitle>
<CardDescription>
프로젝트별 할당된 문서를 조회하고 파일을 업로드할 수 있습니다.
</CardDescription>
</CardHeader>
</Card>
{/* 메인 컨텐츠 */}
<Suspense fallback={<VendorDocumentSkeleton />}>
<VendorDocumentPage searchParams={params} />
</Suspense>
</div>
);
}
|